Router Data Provider
The RouterDataProvider
component is responsible for rendering child components with router context and executing data fetchers on path change.
It accepts 3 parameters:
Prop | Use |
---|---|
initialState | Initial state of the data provider, mostly used to hydrate the client with data from the server. |
fetcherArgs | An object passed to all fetcher functions. |
config | Global configuration options for the data provider. |
src/js/routes/index.js
import { RouterDataProvider } from '@tata1mg/router';
<RouterDataProvider initialState={} fetcherArgs={} config={}>
{/* Your components */}
</RouterDataProvider>